home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
aminet
/
gfx
/
pbm
/
update1.lzh
/
ilbmtoppm.diff
< prev
next >
Wrap
Text File
|
1992-04-24
|
819b
|
22 lines
*** ilbmtoppm.c.old Wed Dec 11 01:55:38 1991
--- ilbmtoppm.c Fri Apr 24 19:57:37 1992
***************
*** 103,108 ****
--- 103,118 ----
pm_error( "EOF / read error" );
xAsp = get_byte( ifp );
yAsp = get_byte( ifp );
+ if ( xAsp == 0 )
+ {
+ pm_message("warning - xAspect = 0, setting to 1");
+ xAsp = 1;
+ }
+ if ( yAsp == 0 )
+ {
+ pm_message("warning - yAspect = 0, setting to xAspect (%d)", xAsp);
+ yAsp = xAsp;
+ }
if ( pm_readbigshort( ifp, &junk ) == -1 ) /* pageWidth */
pm_error( "EOF / read error" );
if ( pm_readbigshort( ifp, &junk ) == -1 ) /* pageHeight */